From ee58a8998c817497e63d07a073dcda4e877c2203 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 3 Jun 2009 22:10:44 +0000 Subject: [PATCH] Actually process plural for 'tags-hitcount' --- includes/specials/SpecialTags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index 981eb2ffc9..00e7d2465e 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -62,7 +62,7 @@ class SpecialTags extends SpecialPage { $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsg( 'tags-edit' ) ) . ')'; $newRow .= Xml::tags( 'td', null, $desc ); - $hitcount = wfMsg( 'tags-hitcount', $hitcount ); + $hitcount = wfMsgExt( 'tags-hitcount', array( 'parsemag' ), $hitcount ); $hitcount = $sk->link( SpecialPage::getTitleFor( 'RecentChanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) ); $newRow .= Xml::tags( 'td', null, $hitcount ); -- 2.20.1